From 05bdcf9b720dcb2779f5814276614297c1f7decd Mon Sep 17 00:00:00 2001 From: Jan Beulich Date: Thu, 9 Jun 2016 15:46:22 +0200 Subject: [PATCH] public/errno: sort entries numerically Signed-off-by: Jan Beulich Acked-by: George Dunlap Reviewed-by: Andrew Cooper --- xen/include/public/errno.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/include/public/errno.h b/xen/include/public/errno.h index ebb853a9eb..305c112bed 100644 --- a/xen/include/public/errno.h +++ b/xen/include/public/errno.h @@ -91,8 +91,8 @@ XEN_ERRNO(EDEADLK, 35) /* Resource deadlock would occur */ XEN_ERRNO(EDEADLOCK, 35) /* Resource deadlock would occur. Aliases EDEADLK */ XEN_ERRNO(ENAMETOOLONG, 36) /* File name too long */ XEN_ERRNO(ENOLCK, 37) /* No record locks available */ -XEN_ERRNO(ENOTEMPTY, 39) /* Directory not empty */ XEN_ERRNO(ENOSYS, 38) /* Function not implemented */ +XEN_ERRNO(ENOTEMPTY, 39) /* Directory not empty */ XEN_ERRNO(ENODATA, 61) /* No data available */ XEN_ERRNO(ETIME, 62) /* Timer expired */ XEN_ERRNO(EBADMSG, 74) /* Not a data message */ -- 2.30.2